home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000033_news@newsmaster….columbia.edu _Fri Jan 2 10:25:14 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  5KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA10392
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 2 Jan 1998 10:25:14 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA16462
  7.     for kermit.misc@watsun; Fri, 2 Jan 1998 10:25:13 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: MSDOS Kermit 3.15 bug.
  12. Date: 2 Jan 1998 15:25:11 GMT
  13. Organization: Columbia University
  14. Lines: 79
  15. Message-ID: <68j0sn$hdj$1@apakabar.cc.columbia.edu>
  16. References: <68hst7$r0e$1@goanna.cs.rmit.edu.au>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8199
  19.  
  20. In article <68hst7$r0e$1@goanna.cs.rmit.edu.au>,
  21. Ross Irvine <rwi@yallara.cs.rmit.edu.au> wrote:
  22. : I think I have a bug in MSDOS Kermit 3.15 Patch Level 1 (The patch level 
  23. : one is the non working ON_EXIT macro I reported). This was also sent to
  24. : kermit-bugs many weeks ago but I haven't heard anything...
  25. It's in the queue.
  26.  
  27. : It seems that using a switch statement anywhere in a script will clear 
  28. : the  value of any paramaters you have passed to that script.  Well the
  29. : first one anyway (\%1).,.
  30. : ...
  31. : As soon as the switch statement has been reached the value of \%1 goes. 
  32. : Remove the switch statement from my script allows \%1 to live on until 
  33. : the end of the script (as it should).
  34. : Has anyone notice that the msdos version of kermit is becomming VERY 
  35. : unstable?
  36. Version 3.15 was in Beta test for over a year; each Beta release was 
  37. announced on our newsgroup and our website.  Evidently most people waited
  38. until after it was released to start testing it.
  39.  
  40. : Something that works on our copy of Kermit 95 (btw when will the gui be 
  41. : released for this?)...
  42. :
  43. >From your K95 FAQ.TXT file:
  44.  
  45. Q: When will Kermit 95 become a full GUI application?
  46.  
  47. A: A full-GUI release with no console windows for Windows 95 and NT is
  48.    expected sometime in 1998.  Registered users of Kermit 95 1.1.x will
  49.    receive it at no additional cost.  Watch the Kermit 95 web page and the
  50.    newsgroup, comp.protocols.kermit.misc, and the Windows 95 and NT and OS/2
  51.    newsgroups for announcements.  It is not yet determined whether there will
  52.    be a full-GUI (Presentation Manager) version for OS/2.
  53.  
  54. In other words, we're still working on it.  It is taking a long time.
  55. And remember that, for the most part, it will be exactly what you have now,
  56. but with a different appearance, and a far more labor-intensive mode of
  57. operation :-)
  58.  
  59. : ... without a problem will send msdos kermit to it's death 
  60. : with all sorts of errors "exausted workspace" "text exceeded available 
  61. : buffer capicty) and all of suddent shelling to do for no reason.
  62. :
  63. Problems with MS-DOS Kermit or other Kermit software should be reported via
  64. email to kermit-support@columbia.edu (as you have done)..  We do our best to
  65. supply workarounds and fix the underlying problems.
  66.  
  67. Bear in mind that Kermit 95 operates in a virtual memory environment,
  68. generally on PCs that have 16, 32, 64 or more MB of main memory.  The amount
  69. of functionality, the sizes of buffers, etc, are practically without limit.
  70.  
  71. MS-DOS Kermit tries to provide most of the same functionality in a tiny
  72. fraction of the space, which adds an extra level of complexity.  Remember,
  73. MS-DOS Kermit must not only fit in 640K, but also must leave room for other
  74. applications in the same 640K.
  75.  
  76. Several bugs have surfaced in MS-DOS Kermit 3.15 since it was released; the
  77. one you have noticed about "memory exhausted" is not patchable.  It can be
  78. worked around, however, by breaking long macros, SWITCH, XIF, WHILE, and FOR
  79. statemants into smaller pieces.  The next release, 3.16, will recover more
  80. gracefully from too-long command sequences, but the limits will still be
  81. there.
  82.  
  83. The problem with SWITCH destroying macro arguments will be fixed too.  In the
  84. meantime, work around it by copying the macro argument to another variable
  85. upon entry to the macro.
  86.  
  87. Although we have not advertised it publicly yet, there is a 3.16 Alpha-test
  88. version in:
  89.  
  90.   http://www.columbia.edu/kermit/test/bin/msk316.zip
  91.  
  92. It should fix most or all of the bugs you notice.  If you find any problems
  93. in it, report them in the usual way.
  94.  
  95. - Frank